From: Ian Campbell Date: Fri, 7 Oct 2011 08:35:31 +0000 (+0100) Subject: Config.mk: error out on non-absolute $(XEN_ROOT) X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/success//%22http:/www.example.com/cgi/success/?a=commitdiff_plain;h=1116f63434680b1549576513e507089ed9dfe63b;p=xen.git Config.mk: error out on non-absolute $(XEN_ROOT) Signed-off-by: Ian Campbell Committed-by: Keir Fraser --- diff --git a/Config.mk b/Config.mk index e346c57a24..bc28b9eede 100644 --- a/Config.mk +++ b/Config.mk @@ -1,5 +1,9 @@ # -*- mode: Makefile; -*- +ifeq ($(filter /%,$(XEN_ROOT)),) +$(error XEN_ROOT must be absolute) +endif + -include $(XEN_ROOT)/.config # A debug build of Xen and tools?